home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 3 / Amiga Format CD03 (1996-07-04)(Future Publishing)(GB)(Track 1 of 6)[!][issue 1996-08].iso / games / editors & updates / breathless060 / install_060_update < prev    next >
Text File  |  1996-05-20  |  2KB  |  115 lines

  1. ;
  2. ; Breathless Installer Utility
  3. ;
  4. ; This script is Copyright ©1995 by FIELDS of VISION Software Design
  5. ;
  6.  
  7. (
  8.     ; Setup English strings
  9.  
  10.     (set #intro
  11.         (cat
  12.             "- BREATHLESS 3D engine v1.1 68060 -\n"
  13.             "\n"
  14.             "Copyright ©1995-96\n" 
  15.             "by\n"
  16.             "FIELDS of VISION Software Design\n"
  17.         )
  18.     )
  19.  
  20.     (set #askdir
  21.         (cat
  22.             "Select where you would like to copy "
  23.             "Breathless 3d engine v1.1 68060"
  24.         )
  25.     )
  26.  
  27.     (set #askdir_help
  28.         (cat
  29.             "Breathless 3d engine v1.1 68060 executable will "
  30.             "be installed in the directory of your choice.\n\n"
  31.         )
  32.     )
  33.  
  34.     (set #yes
  35.         (cat
  36.             "Yes"
  37.         )
  38.     )
  39.  
  40.     (set #no
  41.         (cat
  42.             "No"
  43.         )
  44.     )
  45.  
  46.     (set #quit
  47.         (cat
  48.             "Quit"
  49.         )
  50.     )
  51.  
  52.     (set #installed
  53.         (cat
  54.             "Breathless 3d engine v1.1 68060 will be installed in "
  55.         )
  56.     )
  57.  
  58.     (set #copyingexe
  59.         (cat
  60.             "Copying Breathless 1.1 68060 executable..."
  61.         )
  62.     )
  63.  
  64.     (set #goodbye
  65.         (cat
  66.             "Thank you! Enjoy with Breathless!"
  67.         )
  68.     )
  69.  
  70.     ; Start! Show intro message...
  71.  
  72.     (message #intro)
  73.  
  74.     ; Ask where to install breathless directory...
  75.  
  76.     (if (exists "BREATHLESS:")
  77.         ((set @default-dest (expandpath "BREATHLESS:")))
  78.     )
  79.  
  80.     (set destdir
  81.         (askdir
  82.             (prompt #askdir)
  83.             (help #askdir_help)
  84.             (default @default-dest)
  85.             (disk)
  86.         )
  87.     )
  88.  
  89.     (set @default-dest destdir)
  90.  
  91.     ; Prompt for choosed dir
  92.  
  93.     (message #installed @default-dest)
  94.  
  95.     ; Start copy
  96.  
  97.     (complete 0)
  98.  
  99.     ; Install the Breathless executable file
  100.  
  101.     (working #copyingexe)
  102.  
  103.     (copyfiles
  104.         (source "Breathless")
  105.         (dest @default-dest)
  106.         (infos)
  107.     )
  108.  
  109.     (complete 100)
  110.  
  111.     ; Say goodbye
  112.  
  113.     (message #goodbye)
  114. )
  115.